*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif}
body{
    background:gray;
    color:#eaeaea;
    line-height:1.6;
        background: #f4f1ea;
        margin: 0;
        max-width: 100%;
      
        
      }


.navbar{
    position:sticky; 
    top:0;
    z-index:100;
    background:#161b22;
    box-shadow:0 2px 8px rgba(0,0,0,0.4)}
.container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:90%;
    margin:auto;
    padding:0.8rem 1.5rem}


.logo{
    width: 250px;
}


.nav-links{
    display:flex;
    gap:1.5rem;
    transition:all 0.3s ease}
.nav-links a{
    font-size: 20px;
    text-decoration:none;
    color:whitesmoke;
    font-weight:500;
    position:relative;
    padding:5px 0}
.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#29bacd;
    transition:0.3s}
.nav-links a:hover{
    color:#eaeaea}
.nav-links a:hover::after,.nav-links a.active::after{
    width:100%}
.nav-links a.active{
    color:#00bcd4}


.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:24px;
    height:18px;
    background:none;
    border:none;
    cursor:pointer}
.menu-toggle .bar{
    width:100%;
    height:3px;
    background:#eaeaea;
    border-radius:2px;
    transition:0.3s}
.menu-toggle.active .bar:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.menu-toggle.active .bar:nth-child(2){opacity:0}
.menu-toggle.active .bar:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}


@media(max-width:1165px){
.menu-toggle{
    display:flex}
.nav-links{
    position:absolute;
    top:62px;
    left:0;
    width:100%;
    background:rgba(22, 27, 34, 0.9);
    flex-direction:column;
    align-items:center;
    max-height:0;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,0.1)}
.nav-links.open{
    max-height:480px;
    padding:1rem 0}
.nav-links a{
    color: #eaeaea;
    padding:0.4rem 0;
    width:100%;
    text-align:center}
}

      /* Home Section */
      #home {
        min-height: 100vh;
        width: 100%;
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
          ),
          url("img/jshp\ photo.jpg");
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      .text-box {
        width: 100%;
        color: #fff;
        padding: 0 20px;
      }
      .text-box h1 {
        font-size: 45px;
        color: white;
        margin-bottom: 10px;
      }
      .text-box h6 {
        font-size: 25px;
        margin-bottom: 15px;
        font-weight: 400;
      }
      .text-box p {
        font-size: 25px;
        font-style: italic;
        margin: 10px 0;
        color: #fff;
        text-align: center;
      }
      .emblem {
        width: 150px;
        height: auto;
        margin: 20px 0;
      }
      .text-box h4 {
        font-size: 25px;
        margin-top: 3px;
        text-align: center;
      }

      @media (max-width: 1135px) {
        .text-box h1 {
          font-size: 32px;
        }
        .text-box h6 {
          font-size: 20px;
        }
        .text-box p {
          font-size: 19px;
          color: #fff;
          text-align: center;
        }
        .emblem {
          width: 110px;
        }
        .text-box h3 {
          font-size: 19px;
        }
      }

      @media (max-width: 899px) {
        .text-box h1 {
          font-size: 24px;
        }
        .text-box h6 {
          font-size: 16px;
        }
        .text-box p {
          font-size: 15px;
          color: #fff;
          text-align: center;
        }
        .emblem {
          width: 90px;
        }
        .text-box h3 {
          font-size: 15px;
        }
      }

     /* video section*/
    #video {
      font-family: "Georgia", serif;
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.1)
          ),
          url("/Official Main Index/img/bgv3.jpg");
            background-size: cover;
        background-position: center;
        margin: 0;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #3b2c1a;
        transition: background 0.3s ease;
        min-height: 100vh;
      }

      h1 {
        color: #000000;
        text-align: center;
        margin-bottom: 30px;
      }

      /* Grid layout */
      .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
        max-width: 1000px;
      }

      .video-card {
        background: #81dbf1;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        transition: transform 0.3s ease;
      }

      .video-card:hover {
        transform: scale(1.02);
      }

      .video-box {
        background: #000;
        aspect-ratio: 16 / 9;
      }

      iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      .video-title {
        padding: 10px 15px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        color: #4b3b2c;
        border-top: 2px solid #81dbf1;
        background: #fffaf3;
      }

      /* Button container */
      .buttons {
        margin-top: 35px;
        display: flex;
        justify-content: center;
      }

      /* Golden-brown button style */
      .btn-nav {
        display: inline-block;
          width: 100%;
          padding: 12px 16px;
          border-radius: 10px;
          border: none;
          font-size: 16px;
          font-weight: 700;
          background: linear-gradient(180deg, #00b6c7, #008a97);
          color: white;
          cursor: pointer;
          transition: transform 0.18s ease, box-shadow 0.18s ease;
      }
      .btn-nav:active {
          transform: translateY(1px);
        }

      .btn-nav:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.0);
      }

      /* Responsive */
      @media (max-width: 700px) {
        .video-grid {
          grid-template-columns: 1fr;
        }
      }


     /* Contact Section section*/
  /* Global reset + box sizing */
        *,
        *::before,
        *::after {
          box-sizing: border-box;
        }

        body {
          margin: 0;
          padding: 0;
          height: 100%;
          font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial;
          background: linear-gradient(135deg, #e9f7fb, #ffffff);
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
        }

        /* Contact Section */
        #contact {
           background-image: linear-gradient(
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)
          ),
          url("img/cont5.jpg");
           min-height: 90vh; 
          padding: 56px 18px;
          background-size: cover;
        background-position: center;
        scroll-margin-top: 120px;
  min-height: 80vh;
        }

        .section-title {
          text-align: center;
          font-size: 30px;
          font-weight: 700;
          margin: 0 0 28px;
          color: #ffffff;
        }

        .contact-container {
          max-width: 1100px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 28px;
          align-items: start;
        }

        /* Left info column */
        .contact-info {
          display: flex;
          flex-direction: column;
          gap: 18px;
        }

        .contact-item {
          display: flex;
          gap: 14px;
          align-items: flex-start;
          padding: 14px;
          border-radius: 12px;
          box-shadow: 0 8px 20px rgba(12, 44, 50, 0.06);
        }
        #contact a {
  color: inherit;
  text-decoration: none;
}

        .contact-icon {
          width: 46px;
          height: 46px;
          min-width: 46px;
          border-radius: 10px;
          background: linear-gradient(180deg, #00b6c7, #00a1b1);
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 20px;
          flex-shrink: 0;
        }

        .contact-details h4 {
          margin: 0 0 6px;
          font-size: 16px;
          color: #ffffff;
        }

        .contact-details p {
          margin: 0;
          font-size: 14px;
          color: #ffffff;
          line-height: 1.45;
          word-break: break-word;
        }

        /* Right form column */
        .contact-form {
          background: rgba(255, 255, 255, 0.95);
          padding: 24px;
          border-radius: 12px;
          box-shadow: 0 18px 35px rgba(7, 41, 47, 0.06);
          border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .contact-form h5 {
          margin: 0 0 18px;
          font-size: 20px;
          color: #07373e;
          text-align: left;
        }

        .form-group {
          margin-bottom: 14px;
        }

        .form-group label {
          display: block;
          margin-bottom: 6px;
          font-size: 13px;
          color: #0b4a5a;
          font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
          width: 100%;
          padding: 12px 14px;
          border-radius: 10px;
          border: 1px solid #e4f0f2;
          background: #fff;
          font-size: 15px;
          color: #12343a;
          transition: box-shadow 0.18s ease, border-color 0.18s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
          color: #9fb5b8;
        }

        .form-group input:focus,
        .form-group textarea:focus {
          outline: none;
          border-color: #00b6c7;
          box-shadow: 0 6px 18px rgba(0, 182, 199, 0.12);
          background: #ffffff;
        }

        textarea.form-control {
          resize: vertical;
          min-height: 120px;
          max-height: 320px;
        }

        .submit-btn {
          display: inline-block;
          width: 100%;
          padding: 12px 16px;
          border-radius: 10px;
          border: none;
          font-size: 16px;
          font-weight: 700;
          background: linear-gradient(180deg, #00b6c7, #008a97);
          color: white;
          cursor: pointer;
          transition: transform 0.18s ease, box-shadow 0.18s ease;
        }

        .submit-btn:active {
          transform: translateY(1px);
        }

        .submit-btn:hover {
          box-shadow: 0 10px 30px rgba(0, 136, 150, 0.16);
        }

        #status {
          margin-top: 12px;
          text-align: center;
          font-size: 14px;
          font-weight: 600;
          color: #0b4a5a;
          min-height: 20px;
        }

        /* -------------------------
         Mobile adjustments (responsive)
         ------------------------- */
        @media (max-width: 960px) {
          .contact-container {
            gap: 22px;
          }
        }

        /* Stack columns and enlarge touch targets */
        @media (max-width: 780px) {
          #contact {
            padding: 32px 14px;
          }
          .section-title {
            font-size: 24px;
            margin-bottom: 18px;
          }

          .contact-container {
            grid-template-columns: 1fr;
          }

          .contact-item {
            padding: 12px;
            gap: 12px;
          }

          .contact-icon {
            width: 42px;
            height: 42px;
            font-size: 18px;
            border-radius: 10px;
          }

          .contact-form {
            padding: 18px;
          }

          .contact-details h4 {
            font-size: 15px;
          }
          .contact-details p {
            font-size: 14px;
          }

          .form-group input,
          .form-group textarea {
            padding: 12px;
            font-size: 15px;
          }

          .submit-btn {
            padding: 12px;
            font-size: 15px;
          }
        }

        /* Very small phones */
        @media (max-width: 420px) {
          #contact {
            padding: 24px 12px;
          }
          .section-title {
            font-size: 22px;
          }

          .contact-item {
            gap: 10px;
            padding: 10px;
          }
          .contact-icon {
            width: 40px;
            height: 40px;
            font-size: 17px;
          }
          .contact-details h4 {
            font-size: 14px;
          }
          .contact-details .Address {
            font-size: 13px;
          }

          .form-group label {
            font-size: 13px;
          }
          .form-group input,
          .form-group textarea {
            font-size: 14px;
            padding: 10px;
          }
          .submit-btn {
            font-size: 15px;
            padding: 12px;
          }
        }



  /*---footer---*/
 .footer{
    background-color: #021f2b;
    background-size: cover;
    background-position: center;
 }
 .footer h4{
    text-align: center;
    margin: 0;
    padding: .5rem 0;
    color: floralwhite;
  text-decoration: none !important;
 }
